home *** CD-ROM | disk | FTP | other *** search
- ' ***************************************************
- ' * Atlanta Windows RBBS Logon Script *
- ' ***************************************************
- ' Note: ^M means Enter key
- first$ = "firstname^M"
- last$ = "lastname^M"
- pw$ = "password^M"
- MPRINT "Atlanta Windows Logon Script"
- WAITFOR "What is your FIRST name? "
- RPRINT first$
- WAITFOR "What is your LAST name? "
- RPRINT last$
- WAITFOR "Enter Password (dots echo)? "
- RPRINT pw$
- MPRINT "Sign-on Complete..."
- END
-
-